home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
02
/
0
/
DISK0202.ZIP
/
TRUTH.H
< prev
next >
Wrap
Text File
|
1984-01-01
|
305b
|
14 lines
/*
* truth.h 14 Sep 83
*
* This is the truth.
*/
typedef int bool; /* A true believer. */
typedef int tris; /* Yes, no, or maybe. */
#define FALSE 0 /* Negative. */
#define TRUE 1 /* Positive. */
#define MAYBE 2 /* Perhapsative. */
/* Ideally, FALSE < MAYBE < TRUE. */